DAY17:A Needle in the Haystack


Posted by birdbirdmurmur on 2023-07-31

題目連結

A Needle in the Haystack

解法

function findNeedle(haystack) {
  return "found the needle at position " + haystack.indexOf("needle");
}

筆記

如何快速找到陣列中的索引? indexOf()
直接返回字串


#javascript #Codewars #indexOf







Related Posts

怎麼檢查 object 是不是空的?

怎麼檢查 object 是不是空的?

與 CSS Grid 的第一次接觸

與 CSS Grid 的第一次接觸

[Programming] 一分鐘了解 IOC, DI

[Programming] 一分鐘了解 IOC, DI


Comments